home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000004_news@columbia.edu_Thu Mar 30 14:28:43 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10310
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 09:28:53 -0500
  3. Received: by apakabar.cc.columbia.edu id AA05001
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 09:28:52 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: kermit in limited memory environment?
  9. Date: 30 Mar 1995 14:28:43 GMT
  10. Organization: Columbia University
  11. Lines: 44
  12. Message-Id: <3lef6r$4s1@apakabar.cc.columbia.edu>
  13. References: <3l9v34$7qq@inxs.ncren.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3l9v34$7qq@inxs.ncren.net>,
  18. Andrew J. Esposito <aje@mars.gtcc.cc.nc.us> wrote:
  19. >Please don't laugh.  We have a few PC's sitting around with 256K of RAM.
  20. >DOS takes up 54K, which leaves me with 202K.  Kermit needs 220K (pg. 10,
  21. >MS-DOS KERMIT by C.M. Gianone).  Now in this nifty little book it says
  22. >that KERMIT will run on more or less memory -- but nowhere does it
  23. >explain how this is accomplished.
  24. >
  25. MS-DOS Kermit 3.14 comes in a special "medium" edition for small systems.
  26. The small size is accomplished by removing the network support and the
  27. graphics terminal emulation.  On its own -- i.e. without a lot of macros
  28. defined and screen rollback buffers allocated (hint hint) it occupies
  29. about 200K of memory, give or take 5K -- so you might be able to squeeze
  30. it in.
  31.  
  32.   Anonymous ftp to kermit.columbia.edu,
  33.   directory kermit/archives,
  34.   binary mode,
  35.   file msvibm.zip.
  36.  
  37. If you had a previous version of MS-DOS Kermit, and you
  38. want to install the new version over it, first make safe copies of
  39. your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  40. file you might have modified.
  41.  
  42. Then unzip (with PKUNZIP or equivalent) using the "-d" switch to
  43. preserve the directory structure.  Then read the top-level READ.ME
  44. file for further installation instructions.
  45.  
  46. The program you want to try is KERMITE.EXE (not KERMIT.EXE).
  47. You might need to run it without the standard MSKERMIT.INI file,
  48. which defines a bunch of macros, which add memory:
  49.  
  50.   kermite -f nul
  51.  
  52. and you might also need to set the KERMIT environment variable to
  53. disable rollback:
  54.  
  55.   SET KERMIT=ROLLBACK 0
  56.  
  57. If it's still too big, we can probably dig up an old pre-3.0
  58. version that would fit.
  59.  
  60. - Frank